home *** CD-ROM | disk | FTP | other *** search
- /*
- * Viewer_Window.h
- *
- * QuickDraw 3D 1.6 Sample
- * Robert Dierkes
- *
- * 12/22/98 RDD Created.
- */
-
- #ifndef _HViewer_Window
- #define _HViewer_Window
-
-
- #if defined(OS_MACINTOSH) && OS_MACINTOSH
- #include <MacWindows.h>
- #endif
-
-
- #define kMaxWindowCount 6
- extern WindowPtr gWindows[];
-
-
- TQ3Status Window_Initialize(
- void);
-
- TQ3Status Window_Exit(
- void);
-
- TQ3ViewerObject Window_GetViewer(
- WindowPtr pWindow);
-
- OSErr Window_CloseViewer(
- WindowPtr *hWindow);
-
-
- #endif /* _HViewer_Window */
-